Passed
Branch master (fbf0a6)
by Volodymyr
04:04
created

invisible-captcha.js ➔ define   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 7
nc 1
nop 1
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
/*
2
 * Copyright (c) 2019. Volodymyr Hryvinskyi.  All rights reserved.
3
 * @author: <mailto:[email protected]>
4
 * @github: <https://github.com/hryvinskyi>
5
 */
6
7
define(['ko'], function (ko) {
8
    'use strict';
9
10
    return {
11
        isApiLoad: ko.observable(false),
12
        isApiLoaded: ko.observable(false),
13
        initializeForms: ko.observableArray([]),
14
        initializedForms: ko.observableArray([])
15
    };
16
});